home *** CD-ROM | disk | FTP | other *** search
/ Aminet 38 / Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso / Aminet / dev / c / CLib-SDI.lha / CLib-SDI / include / pragma / example_lib.h
Encoding:
C/C++ Source or Header  |  2000-06-25  |  729 b   |  24 lines

  1. #ifndef _INCLUDE_PRAGMA_EXAMPLE_LIB_H
  2. #define _INCLUDE_PRAGMA_EXAMPLE_LIB_H
  3.  
  4. #ifndef CLIB_EXAMPLE_PROTOS_H
  5. #include <clib/example_protos.h>
  6. #endif
  7.  
  8. #if defined(AZTEC_C) || defined(__MAXON__) || defined(__STORM__)
  9. #pragma amicall(ExampleBase,0x01E,ex_TestRequest(a0,a1,a2))
  10. #pragma amicall(ExampleBase,0x024,ex_TestRequest2A(a0,a1,a2,a3))
  11. #endif
  12. #if defined(_DCC) || defined(__SASC)
  13. #pragma  libcall ExampleBase ex_TestRequest       01E A9803
  14. #pragma  libcall ExampleBase ex_TestRequest2A     024 BA9804
  15. #endif
  16. #ifdef __STORM__
  17. #pragma tagcall(ExampleBase,0x024,ex_TestRequest2(a0,a1,a2,a3))
  18. #endif
  19. #ifdef __SASC_60
  20. #pragma  tagcall ExampleBase ex_TestRequest2      024 BA9804
  21. #endif
  22.  
  23. #endif    /*  _INCLUDE_PRAGMA_EXAMPLE_LIB_H  */
  24.